home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / bootup / boot_a2m / bootplus / readme < prev   
Encoding:
Text File  |  1995-05-02  |  5.6 KB  |  188 lines

  1.  
  2.  
  3.     
  4.             BootPlus v1.0 for Atari ST
  5.  
  6.                  Copyright 1991 - Ed Kuzemchak
  7.  
  8.  
  9. PURPOSE:
  10. -------
  11. BootPlus allows the ST user to choose between three different DESKTOP.INF
  12. files (and three different resolutions) at boot-time.  Along with each 
  13. resolution, the user may select programs that are run during boot-time.
  14.  
  15. BootPlus is intended for color STs, but it could provide a useful function
  16. for monochrome users as well.
  17.  
  18. My use of BootPlus on my color ST provides the following:
  19.  
  20.     - If low resolution is chosen, the system boots in low rez and NeoDesk
  21.       will come up low rez with some low rez programs installed as icons.
  22.       I run a screen saver in this mode, but do not run my mouse doubler
  23.       program.
  24.  
  25.     - If medium resolution is chosen, the system boots in medium rez and
  26.       NeoDesk comes up with my medium rez programs as icons.  In this mode,
  27.       I run my screen saver as well as my mouse doubler and several other
  28.       programs that I would normally put in the /AUTO folder.
  29.  
  30.     - If high resolution is chosen, I run a monochrome emulator and NeoDesk
  31.       is able to deal with high rez just as well.
  32.  
  33.  
  34. REGISTRATION:
  35. ------------
  36. If you find BootPlus useful and wish to register it, send $10 to the 
  37. address below:
  38.     
  39.     Ed Kuzemchak
  40.     3805H Logans Ferry Rd.
  41.     Pittsburgh, PA  15239
  42.  
  43. I will send you back a disk with the following:
  44.     - Bootplus v2.0 with multi-program execution capability
  45.     - Complete Mark Williams C source for BootPlus v2.0
  46. You will also be registered to recieve future upgrades to BootPlus.
  47.  
  48.  
  49. QUICK SETUP:
  50. -----------
  51.  
  52. If you wish to skip the blab and just get to the good stuff, the following 
  53. should be enough of a description to get you started using BootPlus.
  54.  
  55. 1) Locate your DESKTOP.INF file.  If you have a floppy system, I am assuming 
  56.    that you use a certain floppy to boot your system - with DESKTOP.INF on
  57.    it.
  58.  
  59. 2) Set your system to medium resolution.
  60.  
  61. 3) Save your desktop configuration to DESKTOP.INF, then copy that file to
  62.    DESKTOP.MED.
  63.  
  64. 4) Set your system to low resolution.
  65.  
  66. 5) Save your desktop configuration to DESKTOP.INF, then copy that file to
  67.    DESKTOP.LOW.
  68.  
  69. 6) Set your system to high resolution - If you wish - and if you have a 
  70.    monochrome emulator.
  71.  
  72. 7) Save your desktop configuration to DESKTOP.INF, then copy that file to
  73.    DESKTOP.HGH.
  74.  
  75. 8) Edit the file bootplus.cfg file provided and put the ENTIRE PATHNAME of the 
  76.    DESKTOP.INF, DESKTOP.LOW, DESKTOP.MED, DESKTOP.HGH files into the 
  77.    @INF, @LOW, @MED and @HGH commands respectively.
  78.  
  79. 9) If you have programs that you wish to be run when low, medium or high
  80.    resolution is chosen, then put their pathnames in the @LPG, @MPG or @HPG
  81.    commands respectively.
  82.  
  83. 10) Copy bootplus.prg to the /AUTO folder of your boot drive and copy
  84.     bootplus.cfg to the top level directory of the same drive.
  85.  
  86.  
  87. DETAILED SETUP:
  88. -----
  89. If the Quick Setup is not appropriate or if you are just curious, read on...
  90.  
  91. BootPlus reads a configuration file called bootplus.cfg and follows the
  92. commands in there.  There are 9 different commands that can be issued, 
  93. as described below:
  94.  
  95. @TIM - Set the delay (in seconds) before the default resolution is taken.
  96.  
  97.         Ex.
  98.     @TIM 4         # sets the delay to 4 seconds
  99.  
  100.  
  101. @DEF - Set the default resolution (L = low, M = medium, H = high).
  102.  
  103.     Ex.
  104.     @DEF M        # set resolution to Medium is none is specified
  105.  
  106.  
  107. @INF - Set the name of the DESKTOP.INF file that the system expects.
  108.        This is usually DESKTOP.INF.
  109.  
  110.     Ex.
  111.     @INF c:\desktop.inf    # system's desktop.inf
  112.  
  113.  
  114. @LOW - Set the name of the DESKTOP.INF file used for low res.
  115.  
  116.     Ex.
  117.     @LOW c:\desktop.low    # low res desktop.inf file
  118.  
  119.  
  120. @LPG - Set name of program to run when low res is chosen.
  121.        Shareware v1.0 of BootPlus will only allow 1 program to be run per
  122.        resolution.  Registered v2.0 will allow 10 programs per resolution.
  123.     Ex.
  124.     @LPG c:\bootlus\programs\myprog.prg
  125.  
  126.  
  127. @MED - Set the name of the DESKTOP.INF file used for medium res.
  128.  
  129.     Ex.
  130.     @MED c:\desktop.med    # med res desktop.inf file
  131.  
  132.  
  133. @MPG - Set name of program to run when medium res is chosen.
  134.        Shareware v1.0 of BootPlus will only allow 1 program to be run per
  135.        resolution.  Registered v2.0 will allow 10 programs per resolution.
  136.  
  137.     Ex.
  138.     @MPG c:\bootlus\programs\myprog.prg
  139.  
  140.  
  141. @HGH - Set the name of the DESKTOP.INF file used for high res.
  142.  
  143.     Ex.
  144.     @HGH c:\desktop.hgh    # high res desktop.inf file
  145.  
  146.  
  147. @HPG - Set name of program to run when high res is chosen.
  148.        Shareware v1.0 of BootPlus will only allow 1 program to be run per
  149.        resolution.  Registered v2.0 will allow 10 programs per resolution.
  150.  
  151.     Ex.
  152.     @LPG c:\bootlus\programs\myprog.prg
  153.  
  154. Any text beyond the character "#" will be considered comments.
  155.  
  156.  
  157. HOW BOOTPLUS WORKS:
  158. ------------------
  159.  
  160. BootPlus physically copies the correct file according to the resolution
  161. specified into the DESKTOP.INF file specified by the @INF command.
  162.  
  163.  
  164. TERMS AND LIMITATIONS:
  165. ---------------------
  166.  
  167. The user of this software is permitted to distribute it in it's entirety
  168. provided that:
  169.  
  170.     - It is not offered for sale or included in any package offered for sale.
  171.     - This README file is included in all distribution.
  172.  
  173. This software is provided "as is" without warranty of any kind, expressed or
  174. implied, including but not limited to warranties for the fitness of this 
  175. software for any purpose.
  176.  
  177.  
  178. QUESTIONS, COMMENTS:
  179. -------------------
  180.  
  181. Any questions or comments may be directed to:
  182.  
  183.     Ed Kuzemchak
  184.     3805H Logans Ferry Rd.
  185.     Pittsburgh, PA  15239
  186.  
  187.     Internet Mail:  kuzemcha@tartan.com
  188.